home *** CD-ROM | disk | FTP | other *** search
- head 1.6;
- branch ;
- access ;
- symbols ;
- locks mottsmth:1.6; strict;
- comment @# @;
-
-
- 1.6
- date 89.07.31.17.40.11; author douglis; state Exp;
- branches ;
- next 1.5;
-
- 1.5
- date 89.06.15.22.42.01; author douglis; state Exp;
- branches ;
- next 1.4;
-
- 1.4
- date 89.01.02.13.59.02; author douglis; state Exp;
- branches ;
- next 1.3;
-
- 1.3
- date 88.11.16.17.09.28; author douglis; state Exp;
- branches ;
- next 1.2;
-
- 1.2
- date 88.07.14.17.38.25; author mendel; state Exp;
- branches ;
- next 1.1;
-
- 1.1
- date 88.06.19.14.30.04; author ouster; state Exp;
- branches ;
- next ;
-
-
- desc
- @@
-
-
- 1.6
- log
- @changed Proc_RemoteExec to Proc_RawRemoteExec.
- @
- text
- @/*
- * proc.s --
- *
- * Contains stubs for user-level system calls.
- *
- * Copyright 1986, 1988 Regents of the University of California
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any purpose and without
- * fee is hereby granted, provided that the above copyright
- * notice appear in all copies. The University of California
- * makes no representations about the suitability of this
- * software for any purpose. It is provided "as is" without
- * express or implied warranty.
- *
- * rcs = $Header: /sprite/src/lib/c/syscall/sun3.md/RCS/procStubs.s,v 1.5 89/06/15 22:42:01 douglis Exp Locker: douglis $ SPRITE (Berkeley)
- *
- */
-
- #include "userSysCallInt.h"
-
- SYS_CALL(Proc_Debug, SYS_PROC_DEBUG)
- SYS_CALL(Proc_Detach, SYS_PROC_DETACH)
- SYS_CALL(Proc_RawExec, SYS_PROC_EXEC)
- SYS_CALL(Proc_Fork, SYS_PROC_FORK)
- SYS_CALL(Proc_ExecEnv, SYS_PROC_EXEC_ENV)
- SYS_CALL(Proc_RawRemoteExec, SYS_PROC_REMOTE_EXEC)
- SYS_CALL(Proc_RawExit, SYS_PROC_EXIT)
- SYS_CALL(Proc_GetFamilyID, SYS_PROC_GETFAMILYID)
- SYS_CALL(Proc_GetGroupIDs, SYS_PROC_GETGROUPIDS)
- SYS_CALL(Proc_GetIDs, SYS_PROC_GETIDS)
- SYS_CALL(Proc_GetPCBInfo, SYS_PROC_GETPCBINFO)
- SYS_CALL(Proc_GetPriority, SYS_PROC_GETPRIORITY)
- SYS_CALL(Proc_GetResUsage, SYS_PROC_GETRESUSAGE)
- SYS_CALL(Proc_Profile, SYS_PROC_PROFILE)
- SYS_CALL(Proc_SetFamilyID, SYS_PROC_SETFAMILYID)
- SYS_CALL(Proc_SetGroupIDs, SYS_PROC_SETGROUPIDS)
- SYS_CALL(Proc_SetIDs, SYS_PROC_SETIDS)
- SYS_CALL(Proc_SetPriority, SYS_PROC_SETPRIORITY)
- SYS_CALL(Proc_RawWait, SYS_PROC_WAIT)
- SYS_CALL(Proc_OLDSetEnviron, SYS_PROC_SET_ENVIRON)
- SYS_CALL(Proc_OLDUnsetEnviron, SYS_PROC_UNSET_ENVIRON)
- SYS_CALL(Proc_OLDGetEnvironVar, SYS_PROC_GET_ENVIRON_VAR)
- SYS_CALL(Proc_OLDGetEnvironRange, SYS_PROC_GET_ENVIRON_RANGE)
- SYS_CALL(Proc_OLDInstallEnviron, SYS_PROC_INSTALL_ENVIRON)
- SYS_CALL(Proc_OLDCopyEnviron, SYS_PROC_COPY_ENVIRON)
- SYS_CALL(Proc_RawMigrate, SYS_PROC_MIGRATE)
- SYS_CALL(Proc_GetIntervalTimer, SYS_PROC_GETINTERVALTIMER)
- SYS_CALL(Proc_SetIntervalTimer, SYS_PROC_SETINTERVALTIMER)
- SYS_CALL(Proc_GetHostIDs, SYS_PROC_GETHOSTIDS)
- @
-
-
- 1.5
- log
- @changed Proc_Exec (commented out) to Proc_RawExec, and added
- Proc_RemoteExec.
- @
- text
- @d15 1
- a15 1
- * rcs = $Header: /sprite/src/lib/c/syscall/sun3.md/RCS/procStubs.s,v 1.4 89/01/02 13:59:02 douglis Exp Locker: douglis $ SPRITE (Berkeley)
- d26 1
- a26 1
- SYS_CALL(Proc_RemoteExec, SYS_PROC_REMOTE_EXEC)
- @
-
-
- 1.4
- log
- @changed system call for Proc_Migrate to be Proc_RawMigrate.
- @
- text
- @d15 1
- a15 1
- * rcs = $Header: /sprite/src/lib/c/syscall/sun3.md/RCS/procStubs.s,v 1.3 88/11/16 17:09:28 douglis Exp Locker: douglis $ SPRITE (Berkeley)
- d23 1
- a23 7
- /*
- * All Proc_Exec calls are mapped in libc into calls to Proc_ExecEnv.
- * Proc_Fork is defined specially below.
- */
- #ifdef notdef
- SYS_CALL(Proc_Exec, SYS_PROC_EXEC)
- #endif notdef
- d26 1
- @
-
-
- 1.3
- log
- @added Proc_GetHostIDs call
- @
- text
- @d15 1
- a15 1
- * rcs = $Header: /sprite/src/lib/c/syscall/sun3.md/RCS/procStubs.s,v 1.2 88/07/14 17:38:25 mendel Exp Locker: douglis $ SPRITE (Berkeley)
- d51 1
- a51 1
- SYS_CALL(Proc_Migrate, SYS_PROC_MIGRATE)
- @
-
-
- 1.2
- log
- @Changed comment characters from |* to /* */.
- @
- text
- @d15 1
- a15 1
- * rcs = $Header: procStubs.s,v 1.1 88/06/19 14:30:04 ouster Exp $ SPRITE (Berkeley)
- d54 1
- @
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @d1 17
- a17 15
- |* proc.s --
- |*
- |* Contains stubs for user-level system calls.
- |*
- |* Copyright 1986, 1988 Regents of the University of California
- |* Permission to use, copy, modify, and distribute this
- |* software and its documentation for any purpose and without
- |* fee is hereby granted, provided that the above copyright
- |* notice appear in all copies. The University of California
- |* makes no representations about the suitability of this
- |* software for any purpose. It is provided "as is" without
- |* express or implied warranty.
- |*
- |* rcs = $Header: procStubs.s,v 2.4 88/04/08 08:47:24 ouster Exp $ SPRITE (Berkeley)
- |*
- @
-